home *** CD-ROM | disk | FTP | other *** search
/ Stone Design / Stone Design.iso / Stone_Friends / Wave / WavesWorld / Source / IBPalettes / WW3DKit / WWInterp.h < prev    next >
Encoding:
Text File  |  1995-03-22  |  872 b   |  28 lines

  1. // copyright 1993 Michael B. Johnson; some portions copyright 1994, MIT
  2. // see COPYRIGHT for reuse legalities
  3. //
  4.  
  5.  
  6. #import <appkit/appkit.h>
  7.  
  8. //#import "WWTCLInterp.h"
  9. // if I only include the above, I get a duplicate warning, so...
  10. #import "WWTCLKit.h"
  11.  
  12. @interface WWInterp:WWTCLInterp
  13. {
  14.   BOOL  interpSetup;
  15.   List  *wwVarList;
  16.   id    runTime;  // this is so the sample generator info can be accessed
  17. }
  18.  
  19. - addVarTypeInfo:newVarTypeInfo;
  20. - (BOOL)enumExists:(const char *)enumVarName;
  21. - (char *)setVar:(char *)variableName toReadOnlyValue:(char *)newValue;
  22. - (char *)setVar2:(char *)variableName1 :(char *)variableName2 toReadOnlyValue:(char *)newValue;
  23. - registerCurrentSampleGeneratorName:(const char *)newCurrentSampleGeneratorName weight:(float)weight;  
  24. - setCurrentSampleGeneratorName:(const char *)newCurrentSampleGeneratorName;
  25. - setRunTime:runTimeObject; 
  26.  
  27. @end
  28.